'Declaration
Public Function New( _ ByVal success As Boolean, _ ByVal commandAction As CommandActions, _ ByVal worksheet As Worksheet, _ ByVal selections() As Reference, _ ByVal activeCell As CellReference _ )
'Usage
Dim success As Boolean Dim commandAction As CommandActions Dim worksheet As Worksheet Dim selections() As Reference Dim activeCell As CellReference Dim instance As New CommandResult(success, commandAction, worksheet, selections, activeCell)
public CommandResult( bool success, CommandActions commandAction, Worksheet worksheet, Reference[] selections, CellReference activeCell )
Parameters
- success
- The command is executed successful
- commandAction
- The action that should be handled after the command is executed
- worksheet
- The worksheet processed by the command
- selections
- The selections that were modified by the command
- activeCell
- The modified active cell.